home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / science / frctlwzr.sit / Fractal Wizard.rsrc / øFm4_129_Distort < prev    next >
Text File  |  1990-12-16  |  694b  |  19 lines

  1. ----------------------------------- Distort ----------------------------------
  2.  
  3. Distort, one of the standard EDPs for Fractal Wizard, is a modified version of
  4. MBFast. If you do not know what MBFast does, read its Help first.
  5. With Distort, you draw distorted Mandelbrot sets. The normal iteration is slightly
  6. modified. The iteration used to compute the Mandelbrot set is:
  7.  
  8. z[n]:= z[n-1]^2 + c, where z = x+iy and c = a+ib.
  9.  
  10. In real numbers, the iteration looks like this:
  11.  
  12. x[n]:= x[n-1]^2 - y[n-1]^2 + a
  13. y[n]:= 2*x[n-1]*y[n-1] + b
  14.  
  15. In Distort, the equation for y is modified:
  16.  
  17. y[n]:= 2*D*x[n-1]*y[n-1] + b
  18.  
  19. If D = 1, this still yields the Mandelbrot set. For other values╔ well, try it yourself!